HTML Structure Tags

<html>

The beginning and end of an HTML document.

Example

<head>

Contains metadata (or the information) of the HTML document. It is required and should only be used once.

Example

<title>

Title of the document.

Example

<body>

Everything within these tags are the body of your webpage.

Example




Back to Home